home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / internet / net commander 1.0 / ISP / SCRPTLST / CLOUD9.CMD < prev    next >
Encoding:
Text File  |  1996-02-15  |  1.1 KB  |  47 lines

  1. # login.cmd for Cloud 9 Internet
  2. # You need to edit: line 18 (make it 696 4100 or 242 0287)
  3. #            line 34 (choose either slip or ppp, case sensitive)
  4. #             lines 39 and 41 (your username and password)
  5. #
  6. # \13 and \n = carriage return
  7. # initialize modem - USR Sportster modems use special strings
  8. #                  - you may need to add other variables after "at"
  9. output at&f1\13
  10. input 10 OK\n
  11. #
  12. # set modem to indicate DCD
  13. #
  14. output at&c1\13
  15. input 10 OK\n
  16. #
  17. # send phone number [ This is White Plains, Mount Kisco is 242 0287 ]
  18. output atdt 696 4100\13
  19. #
  20. # now we are connected.
  21. #
  22. input 30 CONNECT
  23. #
  24. #  wait till it's safe to send because some modem's hang up
  25. #  if you transmit during the connection phase
  26. #
  27. wait 30 dcd
  28. #
  29. # now prod the terminal server
  30. #
  31. output \13
  32. #
  33. #  wait for the username prompt [ SET to PPP currently ]
  34. #  
  35. input 30 service
  36. output ppp\13
  37. #
  38. # and the password [ Please EDIT the UPPERCASE text ]
  39. #  
  40. input 30 Username:
  41. output YOUR_USERNAME_HERE\13
  42. input 30 Password:
  43. output YOUR_PASSWORD_HERE\13
  44. #
  45. # we are now logged in
  46. #